LogLevel

class LogLevel

Deprecated

Use ILogger.Level instead

Replace with

import io.github.wax911.library.logger.contract.ILogger.Level
ILogger.Level

The levels used to print out and filter log messages

The order in terms of verbosity, from least to most is ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should never be compiled into an application except during development. Debug logs are compiled in but stripped at runtime. Error, warning and info logs are always kept.

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
operator fun compareTo(other: LogLevel): Int